home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programming Languages Suite
/
ProgramD2.iso
/
Borland
/
Borland C++ V5.02
/
SRCPOOL.PAK
/
SRCPOOL.CPP
next >
Wrap
C/C++ Source or Header
|
1997-05-06
|
371b
|
18 lines
// Borland C++ - (C) Copyright 1991, 1992 by Borland International
//
// IDE SourcePool Example
#include <windows.h>
#ifdef __FLAT__
static char szName[] = "SrcPool32";
#else
static char szName[] = "SrcPool16";
#endif
int WINAPI WinMain( HINSTANCE, HINSTANCE, LPSTR, int )
{
return( ::MessageBox( 0, "IDE SourcePool example", szName, MB_OK ) );
}